.flip-card {
    background-color: transparent;
    width: 300px;
    height: 300px;
    border: 1px solid #f1f1f1;
    perspective: 1000px; /* Remove this if you don't want the 3D effect */
  }
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
  }
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden; /* Safari */
    backface-visibility: hidden;
  }
  .flip-card-front {
   
    color: blueviolet;
  }
  .flip-card-back {
    background-color: rgba(133, 32, 180, 0.89);
    color: blueviolet;
    transform: rotateY(180deg);
  }   
  
  .flip-card-back {
  background: url("../assets/images\ \(1\).jpg");
  background-color: dodgerblue;
  color: white;
  transform: rotateY(180deg);
  }
  .section-heading{
    background: url("../assets/scenery.jpg");
  }
  .section-heading h2{
    color: white;
    text-align: center;
    padding-top: 50px;
    margin-top: 0px;

  }
  .section-heading p{
      font-style: oblique;
      font-size: large;
    color: white;
    text-align: center;
    text-decoration: none;
  }
  .flip-card-back h1{
    font-style: oblique;
      font-size: extra x-large;
    color: white;

  }
  .flip-card-back p{
    font-style: oblique;
      font-size: large;
    color: white;

  }
  /* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 15% auto; /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}
    

